home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_se / writable_attribute.e < prev    next >
Text File  |  1998-12-22  |  3KB  |  104 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  4. --                       http://www.loria.fr/SmallEiffel
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it 
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later 
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License 
  11. -- for  more  details.  You  should  have  received a copy of the GNU General 
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class WRITABLE_ATTRIBUTE
  17.    --
  18.    -- For instance variables (ordinary attribute).
  19.    --
  20.  
  21. inherit ATTRIBUTE;
  22.  
  23. creation make
  24.    
  25. feature
  26.  
  27.    isa_redefinition: BOOLEAN;
  28.      -- Is it a redefinition of a previously define attribute ?
  29.  
  30. feature {NONE}
  31.  
  32.    make(n: like names; t: like result_type) is
  33.       require
  34.      n /= Void;
  35.      t /= Void
  36.       do
  37.      make_e_feature(n);
  38.      result_type := t;
  39.       ensure
  40.      names = n;
  41.      result_type = t
  42.       end;
  43.  
  44. feature {BASE_CLASS}
  45.  
  46.    set_isa_redefinition is
  47.       do
  48.      isa_redefinition := true;
  49.       end;
  50.  
  51. feature
  52.    
  53.    to_run_feature(t: TYPE; fn: FEATURE_NAME): RUN_FEATURE_2 is
  54.       do
  55.      !!Result.make(t,fn,Current);
  56.       end;
  57.    
  58. feature {C_PRETTY_PRINTER}
  59.  
  60.    stupid_switch(up_rf: RUN_FEATURE; r: ARRAY[RUN_CLASS]): BOOLEAN is
  61.       local
  62.      offset1, offset2, i: INTEGER;
  63.      dyn_rf2: RUN_FEATURE_2;
  64.      dyn_rc: RUN_CLASS;
  65.      t: TYPE;
  66.       do
  67.      from
  68.         i := r.upper;
  69.         dyn_rc := r.item(i);
  70.         dyn_rf2 ?= dyn_rc.dynamic(up_rf);
  71.         if dyn_rf2 /= Void then
  72.            Result := true;
  73.            t := dyn_rf2.result_type;
  74.            if t.is_native_array then
  75.           t := t.generic_list.first;
  76.           Result := t.is_reference;
  77.            end;
  78.            offset1 := dyn_rc.offset_of(dyn_rf2);
  79.            i := i - 1;
  80.         end;
  81.      until
  82.         not Result or else i = 0
  83.      loop
  84.         dyn_rc := r.item(i);
  85.         dyn_rf2 ?= dyn_rc.dynamic(up_rf);
  86.         if dyn_rf2 /= Void then
  87.            offset2 := dyn_rc.offset_of(dyn_rf2);
  88.            Result := offset1 = offset2;
  89.            i := i - 1;
  90.         else
  91.            Result := false;
  92.         end;
  93.      end;
  94.       end;
  95.  
  96. feature {NONE}
  97.    
  98.    pretty_tail is 
  99.       do 
  100.       end;
  101.  
  102. end -- WRITABLE_ATTRIBUTE
  103.  
  104.